home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_12
/
9n12033b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-10-13
|
290 b
|
9 lines
typedef struct node {
struct node *pfwd; /* ptr to next node in list */
struct node *pbwd; /* ptr to prev node in list */
struct node *pdupe; /* ptr to next duplicate node */
void (*process)(unsigned); /* function to call */
unsigned priority; /* function priority */
} Node;